home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / FILEXIST.CC < prev    next >
Text File  |  1993-04-04  |  242b  |  13 lines

  1. #include <dir.h>
  2. file_exist(char *fn)
  3. /* Check to see of a Find exists.
  4.     RETURN 1 if exist 0 if not.
  5. */
  6. {
  7.         struct ffblk fb;
  8.         int rc;
  9.         rc=findfirst(fn,&fb,0);
  10.         if(rc==0) return(1);
  11.         return(0);
  12. }
  13.